.header {
    color: #FFD700;
    text-shadow: black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #272727; /* Vibrant green background */
    padding: 15px 30px;
    font-family:"poppins",serif; 
    font-weight: 600;
    font-style: normal;
  }
  
  .logo img {
    width: 60px; /* Adjust the size of the logo */
    height: auto; /* Maintain aspect ratio */
    margin-left: 0px;
  }
  
  .navbar ul {
    list-style-type: none; /* Remove bullet points */
  }
  
  .navbar li {
    margin: 0 15px; /* Space between links */
  }
  
  .navbar a {
    text-decoration: none; /* Remove underline */
    color: white; /* White text color */
    font-weight: bold;
    transition: color 0.3s; /* Smooth transition for hover effect */
    font-family:"poppins",serif; 
    font-weight: 600;
    font-style: normal;
  }
  
  .navbar a:hover {
    color: #FFD700; /* Gold color on hover */
  }

body {
    background-color: #ececec;
    margin: 0;
}

.contact-container {
    max-width: 400px;
    margin: 50px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

h1 {
    color: #333;
}

p {
    color: #666;
}

.social-icons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.icon {
    margin: 0 15px;
}

.icon img {
    width: 40px; /* Adjust size as needed */
    height: auto; /* Maintain aspect ratio */
}

.icon:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease-in-out;
}

footer {
    text-align: center;
    padding: 20px 0;
    font-family:"poppins",serif; 
    font-weight: 600;
    font-style: normal;
  }
  
  .autres-produites {
    animation: vibrate 1.5s infinite; /* Apply the vibrate animation continuously */
  }
  
  @keyframes vibrate {
    0% { transform: translate(0); }
    10% { transform: translate(-2px, 0); }
    20% { transform: translate(2px, 0); }
    30% { transform: translate(-2px, 0); }
    40% { transform: translate(2px, 0); }
    50% { transform: translate(-2px, 0); }
    60% { transform: translate(2px, 0); }
    70% { transform: translate(-2px, 0); }
    80% { transform: translate(2px, 0); }
    90% { transform: translate(-2px, 0); }
    100% { transform: translate(0); } /* Return to original position */
  }